System.Reflection.PropertyInfo prop = typeof(YourType).GetProperty("PropertyName"); object value = prop.GetValue(yourInstance); ... prop.SetValue(yourInstance, "value");